home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / flight / tex.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  84 lines

  1. /*
  2.  * Copyright 1989, 1990, 1991, 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17.  
  18. /*
  19.  *  flight/tex.c $Revision: 1.4 $
  20.  */
  21.  
  22. #include "fcntl.h"
  23. #include "stdio.h"
  24. #include "flight.h"
  25.  
  26. static float texps[] = {TX_MAGFILTER, TX_BILINEAR, TX_MINFILTER,
  27.                TX_MIPMAP_LINEAR, 0};
  28. static float texps_point[] = {TX_MAGFILTER, TX_POINT, TX_MINFILTER,
  29.                TX_MIPMAP_POINT, 0};
  30. static float tevps[] = {0};
  31.  
  32. int texon = FALSE;
  33.  
  34.  
  35. init_texturing()
  36. {
  37.     long *image;
  38.     unsigned char bw[128*128];
  39.     int i;
  40.  
  41.     readtex("hills.t", bw, 128*128);
  42.     texdef2d(1, 1, 128, 128, (unsigned long *)bw, 5, texps_point);
  43.     tevdef(1, 0, tevps);
  44. }
  45.  
  46.  
  47. texturing(b)
  48. {
  49.     if (b)
  50.     {
  51.     texon = TRUE;
  52.     texbind(0, 1);
  53.     tevbind(0, 1);
  54.     }
  55.     else
  56.     {
  57.     texon = FALSE;
  58.     texbind(0, 0);
  59.     tevbind(0, 0);
  60.     }
  61. }
  62.  
  63.  
  64. readtex(fname, buf, size)
  65.     char *fname;
  66.     unsigned long *buf;
  67. {
  68.     long ifd;
  69.     char file[80];
  70.  
  71.     strcpy(file, datadir);
  72.     strcat(file, fname);
  73.  
  74.     if((ifd = open(file, O_RDONLY)) == -1)
  75.     {
  76.     fprintf(stderr,"flight: can't open texture file %s\n", file);
  77.     exit(1);
  78.     }
  79.  
  80.     read(ifd, buf, size);
  81.  
  82.     close(ifd);
  83. }
  84.